home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / mail / Mutt089src.lha / Mutt-0.89i-AMIGA / src / copy.h < prev    next >
C/C++ Source or Header  |  1998-01-28  |  2KB  |  59 lines

  1. /*
  2.  * Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu>
  3.  * 
  4.  *     This program is free software; you can redistribute it and/or modify
  5.  *     it under the terms of the GNU General Public License as published by
  6.  *     the Free Software Foundation; either version 2 of the License, or
  7.  *     (at your option) any later version.
  8.  * 
  9.  *     This program is distributed in the hope that it will be useful,
  10.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *     GNU General Public License for more details.
  13.  * 
  14.  *     You should have received a copy of the GNU General Public License
  15.  *     along with this program; if not, write to the Free Software
  16.  *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  */ 
  18.  
  19. /* flags to _mutt_copy_message */
  20. #define M_CM_NOHEADER    1    /* don't copy the message header */
  21. #define M_CM_PREFIX    (1<<1)    /* quote the message */
  22. #define M_CM_DECODE    (1<<2)    /* decode the message body into text/plain */
  23. #define M_CM_DISPLAY    (1<<3)    /* output is displayed to the user */
  24.  
  25.  
  26.  
  27. #ifdef _PGPPATH
  28. #define M_CM_VERIFY    (1<<4)    /* do signature verification */
  29. #endif
  30.  
  31.  
  32.  
  33. int _mutt_copy_message (FILE *fpout,
  34.             FILE *fpin,
  35.             HEADER *hdr,
  36.             BODY *body,
  37.             int flags,
  38.             int chflags);
  39.  
  40. int mutt_copy_message (FILE *fpout,
  41.                CONTEXT *src,
  42.                HEADER *hdr,
  43.                int flags,
  44.                int chflags);
  45.  
  46. int _mutt_append_message (CONTEXT *dest,
  47.               FILE *fpin,
  48.               CONTEXT *src,
  49.               HEADER *hdr,
  50.               BODY *body,
  51.               int flags,
  52.               int chflags);
  53.  
  54. int mutt_append_message (CONTEXT *dest,
  55.              CONTEXT *src,
  56.              HEADER *hdr,
  57.              int cmflags,
  58.              int chflags);
  59.